home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 March / CMCD0305.ISO / Software / Shareware / Comunicatii / TrafMeter5 / TrafMeter56.exe / {app} / XSLExamples / traffic.xsl < prev    next >
Extensible Markup Language  |  2003-10-01  |  1KB  |  51 lines

  1. <?xml version="1.0" ?>
  2. <xsl:template xmlns:xsl="uri:xsl">
  3.   <HTML>
  4.     <BODY>
  5.       <H3>Your company name - Daily traffic report</H3>
  6.  
  7. <table cellspacing="0" cellpadding="5" border="1">
  8. <tr>
  9.     <td STYLE="font-family:Arial; font-size:12">
  10.       Id
  11.     </td>
  12.     <td STYLE="font-family:Arial; font-size:12">
  13.       Name
  14.     </td>
  15.     <td STYLE="font-family:Arial; font-size:12">
  16.       Sent
  17.     </td>
  18.     <td STYLE="font-family:Arial; font-size:12">
  19.       Recv
  20.     </td>
  21. </tr>
  22.  
  23.   <xsl:for-each select="TrafficReport/Filter">
  24. <tr>
  25.     <td STYLE="font-family:Arial; font-size:12">
  26.       <xsl:value-of select="@Id"/>
  27.     </td>
  28.     <td STYLE="font-family:Arial; font-size:12">
  29.       <xsl:value-of select="Name"/>
  30.     </td>
  31.     <td STYLE="font-family:Arial; font-size:12">
  32.       <xsl:value-of select="Sent"/>
  33.     </td>
  34.     <td STYLE="font-family:Arial; font-size:12">
  35.       <xsl:value-of select="Recv"/>
  36.     </td>
  37.  
  38. </tr>
  39.   </xsl:for-each>
  40.  
  41. </table>
  42.  
  43. <p> <br>
  44. <i>Last Modified:
  45. <xsl:value-of select="TrafficReport/LastModified"/>
  46. </i> </br></p>
  47.  
  48.     </BODY>
  49.   </HTML>
  50. </xsl:template>
  51.